home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998…eptember: Technology Seed / September 98 ADC Seed CD.toast / FireWire 1.1 DR2 SDK / Source / OpenTransport / FWOTDriver / OTVDevice.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-15  |  901 b   |  45 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        OTVDevice.c
  3.  
  4.     Contains:    Virtual device software for Open Transport networking.
  5.  
  6.     Written by:    Erik Staats
  7.  
  8.     Copyright:    © 1996 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.        <FW3>     3/29/96    ES        Removed inclusion of FWExpertPriv.h.
  13.        <FW2>     3/12/96    ES        Fill in contains and written by fields.
  14.        <FW1>     3/12/96    ES        first checked in
  15.  
  16. */
  17.  
  18. #include <Types.h>
  19. #include <Errors.h>
  20. #include <Devices.h>
  21. #include <DriverServices.h>
  22. #include <FireWire.h>
  23. #include <OTVDevice.h>
  24. /*zzz*/
  25. #include <stdio.h>
  26. char  debugStr[256];
  27. /*zzz*/
  28.  
  29. ////////////////////////////////////////////////////////////////////////////////
  30. //
  31. // The virtual device description.
  32. //
  33.  
  34. FWVDeviceDescription            TheVDeviceDescription =
  35. {
  36.     {
  37.         kVDeviceDescriptionSignature,
  38.         kVDeviceDescriptionVersion,
  39.         sizeof (FWVDeviceDescription),
  40.         kServiceCategoryFWDriver,
  41.     },
  42.     ' app',
  43.     ' otd'
  44. };
  45.